"DESCRIPTION 1"="Use this option to specify the size for the icons on your desktop (value is in pixels). Recommended values are 16, 32 and 48; using other sizes may make your icons look distorted."
"DESCRIPTION 2"="By default, it is "32" (no quotes). To reset the value, simply clear the field."
"DESCRIPTION 3"="NOTE: this will also affect your Start Menu and the Large Icon view in Windows Explorer."
"AUTHOR"="Xteq Systems"
"CONTACTURL"="http://www.xteq.com"
"COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
"COMMENT 1"="Thanks to Neil R. Turner [totalxs@hotmail.com] for the Recommended Sizes and Start Menu/Explorer Notice."
sP="HKCU\Control Panel\Desktop\WindowMetrics\"
sV1="Shell Icon Size"
Sub Plugin_Initialize
i=RegReadValue(sP & sV1)
if IsEmpty(i) then
SetUIElement 1,""
else
SetUIElement 1,i
end if
End Sub
Sub Plugin_Apply(ElementIndex,ElementSubIndex)
s=GetUIElement(1)
if len(s)=0 then
'User wants to kill value
if RegValueExists(sP & sV1) then Call RegDeleteValue(sP & sV1)